The GtkTreeListRowSortKeys implementation doesn't
know how it wants to cache its keys, and just crashes.
Since that is not cool, add a bandaid fix that forces
it to recreate its keys instead. Extra work, but hey,
no crash.
Related: #3228
GtkTreeListRowSortKeys *self = (GtkTreeListRowSortKeys *) keys;
GtkTreeListRowSortKeys *compare;
+ /* FIXME https://gitlab.gnome.org/GNOME/gtk/-/issues/3228 */
+ return FALSE;
+
if (keys->klass != other->klass)
return FALSE;